home *** CD-ROM | disk | FTP | other *** search
- WITH Text_IO;
- WITH My_Int_IO;
- PACKAGE BODY VT100 IS
-
- -- Procedures for drawing pictures on ANSI Terminal Screen
-
-
- PROCEDURE Beep IS
- BEGIN
- Text_IO.Put (Item => ASCII.BEL);
- END Beep;
-
- PROCEDURE ClearScreen IS
- BEGIN
- Text_IO.Put (Item => ASCII.ESC);
- Text_IO.Put (Item => "[2J");
- END ClearScreen;
-
- PROCEDURE MoveCursor (Column : Width; Row : Depth) IS
- BEGIN
- Text_IO.Put (Item => ASCII.ESC);
- Text_IO.Put ("[");
- My_Int_IO.Put (Item => Row, Width => 1);
- Text_IO.Put (Item => ';');
- My_Int_IO.Put (Item => Column, Width => 1);
- Text_IO.Put (Item => 'f');
- END MoveCursor;
-
- END VT100;